/* Reset some basic elements */
body, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

/* Basic styles for body and nav */
body {
    font-family: Arial, sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #333;
    padding: 10px;
}

.nav-links a:hover {
    color: #007BFF;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 8px;
}

.dropdown-content a {
    padding: 10px;
    display: block;
    width: 100%;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #333;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f9f9f9;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    background: white;
}

.hero-text {
    flex: 1;
    margin-right: 20px;
}

.hero-text h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
    margin-left: 10px;
}

.hero-text p {
    font-size: 1.5em;
    margin-left: 10px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 70px;
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    background: #f9f9f9;
}

.about-image {
    flex: 1;
    margin-right: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 10px;
    font-size: 2em;
}

.about-text p {
    margin-bottom: 10px;
    font-size: 1.5em;
}


#services {
    padding: 40px;
    text-align: center;
}

#services h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.service-item img {
    width: 100%;
    height: auto;
    display: block;
}

.service-item h3 {
    font-size: 1.2em;
    margin: 15px 0;
}

.service-item:hover {
    transform: translateY(-10px);
}

/* Reviews Section Styles */
.reviews {
    margin-top: 40px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    background-color: white;
    text-align: center;
}

.reviews h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: rgb(65, 12, 130);
}

.reviews-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.review-item {
    flex: 1;
    text-align: center;
}


.review-text {
    font-size: 1.2em;
    color: rgb(65, 12, 130);
}

/* Footer Styles */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.footer a {
    color: #1b2256;
    font-size: 1.5em;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: flex;
    }
    .hero-content, .about-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text, .about-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .reviews-grid {
        flex-direction: column;
    }
    .review-item {
        margin-bottom: 20px;
    }
    .footer {
        flex-direction: column;
        text-align: center;
    }
}


/* Responsive Design for services */
@media (max-width: 768px) {
    #services {
        padding: 20px;
    }

    #services h2 {
        font-size: 1.8em;
    }

    .service-item h3 {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    #services h2 {
        font-size: 1.5em;
    }

    .service-item h3 {
        font-size: 0.9em;
    }
}
